home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1999 March / EnigmA AMIGA RUN 35 (1999)(G.R. Edizioni)(IT)[!][issue 1999-03].iso / earcd / devel / vbcc-68k-src / machines / amiga68k / libsrc / ctype / isalnum.c < prev    next >
C/C++ Source or Header  |  1999-01-01  |  82b  |  7 lines

  1. #include <ctype.h>
  2.  
  3. #undef isalnum
  4.  
  5. int isalnum(int c)
  6. { return __ctype[1+c]&7; }
  7.